home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Macintosh Sample Code / SC.019.TEStyleSample / PTEStyleSample.make < prev    next >
Encoding:
Text File  |  1989-09-30  |  2.2 KB  |  62 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple Styled TextEdit Sample Application
  5. #
  6. #    TEStyleSample
  7. #
  8. #    PTEStyleSample.make    -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                        10/89
  14. #
  15. #    Components:    TEStyleSample.p            October    1, 1989
  16. #                TEStyleSampleGlue.a        October    1, 1989
  17. #                TEStyleSample.r            October    1, 1989
  18. #                TEStyleSample.h            October    1, 1989
  19. #                PTEStyleSample.make        October    1, 1989
  20. #
  21. #    TEStyleSample is an example application that demonstrates how 
  22. #    to initialize the commonly used toolbox managers, operate 
  23. #    successfully under MultiFinder, handle desk accessories and 
  24. #    create, grow, and zoom windows. Both styled and fundamental TextEdit 
  25. #    toolbox calls and TextEdit autoscroll are demonstrated. It 
  26. #    also shows how to create and maintain scrollbar controls as well
  27. #    as implementing a basic printing loop.
  28. #
  29. #    It does not by any means demonstrate all the techniques you 
  30. #    need for a large application. In particular, TEStyleSample does not 
  31. #    cover exception handling, multiple windows/documents, 
  32. #    sophisticated memory management, or undo. All of 
  33. #    these are vital parts of a normal full-sized application.
  34. #
  35. #    This application is an example of the form of a Macintosh 
  36. #    application; it is NOT a template. It is NOT intended to be 
  37. #    used as a foundation for the next world-class, best-selling, 
  38. #    600K application. A stick figure drawing of the human body may 
  39. #    be a good example of the form for a painting, but that does not 
  40. #    mean it should be used as the basis for the next Mona Lisa.
  41. #
  42. #    We recommend that you review this program, TESample or Sample before 
  43. #    beginning a new application. TESample is a simpler version of TEStyleSample
  44. #    without styles and Sample is a simple app. which doesn’t 
  45. #    use TextEdit or the Control Manager.
  46. #
  47.  
  48. PObjs    =    TEStyleSample.p.o ∂
  49.             TEStyleSampleGlue.a.o ∂
  50.             "{Libraries}"Runtime.o ∂
  51.             "{Libraries}"Interface.o ∂
  52.             "{PLibraries}"PasLib.o
  53.  
  54. PTEStyleSample        ƒƒ {PObjs} PTEStyleSample.make
  55.             Link -o {Targ} {PObjs}
  56.             SetFile {Targ} -t APPL -c 'MOOT' -a B
  57.  
  58. PTEStyleSample        ƒƒ TEStyleSample.r TEStyleSample.h PTEStyleSample.make
  59.             Rez -rd -append -o {Targ} TEStyleSample.r
  60.  
  61. TEStyleSample.p.o    ƒƒ TEStyleSample.p PTEStyleSample.make
  62.